home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / UTILITIE / UNIX_COH / 2774A.ZIP / TOOLS1.SHZ / TOOLS1 / logname.c < prev    next >
C/C++ Source or Header  |  1991-07-03  |  287b  |  15 lines

  1. /*    this should return the effective login-name    */
  2. /*    sorta like 'who' but without that junk about    */
  3. /*    which tty you are on, etc.            */
  4. /*    Rick Nickle, Jan 24, 1991            */
  5. /*    fcsys!trystro!rick@think.com            */
  6.  
  7. #include    <utmp.h>
  8. #include    <stddef.h>
  9.  
  10. main()
  11.  
  12. {
  13.         printf("%s\n",cuserid());
  14. }
  15.